.videos {
  display: none;
  /* border: 1px solid #080808; */
  position: fixed;
  left: 50%;
  top: 50%;
  /* margin-left: -320px;
    margin-top: -210px; */
  transform: translate(-50%, -50%);
  z-index: 9999;
  width: 1000px;
  width: 70%;
  /* height: 360px; */
}
.vclose {
  position: absolute;
  right: 2%;
  top: 1%;
  border-radius: 100%;
  cursor: pointer;
}
/* 遮罩层的基本样式 */
.overlay {
  position: fixed;
  /* 固定定位 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* 半透明背景 */
  display: none;
  /* 默认不显示 */
  justify-content: center;
  /* 水平居中 */
  align-items: center;
  /* 垂直居中 */
  z-index: 999;
  /* 确保在最上层 */
}
